Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

increase UnitTimeoutInactive inactivityTimeout #10692

Merged
merged 1 commit into from
Jan 30, 2025

Conversation

caolanm
Copy link
Contributor

@caolanm caolanm commented Dec 9, 2024

fails for me locally with --enable-debug 'CFLAGS=-O0 -ggdb' 'CXXFLAGS=-O0 -ggdb'

Change-Id: I8cd0cb1d187bf3adab1f81345c1cd83b5180eee4

  • Resolves: #
  • Target version: master

Summary

TODO

  • ...

Checklist

  • I have run make prettier-write and formatted the code.
  • All commits have Change-Id
  • I have run tests with make check
  • I have issued make run and manually verified that everything looks okay
  • Documentation (manuals or wiki) has been updated or is not required

@caolanm caolanm force-pushed the private/caolan/unittimeout_fail branch from fe666d2 to fad2c58 Compare December 9, 2024 20:24
fails for me locally with --enable-debug 'CFLAGS=-O0 -ggdb' 'CXXFLAGS=-O0 -ggdb'

Signed-off-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Change-Id: I8cd0cb1d187bf3adab1f81345c1cd83b5180eee4
@caolanm caolanm force-pushed the private/caolan/unittimeout_fail branch from fad2c58 to 4bee4fe Compare December 10, 2024 08:28
@caolanm caolanm requested a review from vmiklos January 30, 2025 11:17
@caolanm
Copy link
Contributor Author

caolanm commented Jan 30, 2025

This is fairly edge case I guess, but it looks harmless to me to increase this.

@@ -37,7 +37,7 @@ class UnitTimeoutInactivity : public UnitTimeoutBase0
void configure(Poco::Util::LayeredConfiguration& /* config */) override
{
// net::Defaults.inactivityTimeout = std::chrono::seconds(3600);
net::Defaults.inactivityTimeout = std::chrono::milliseconds(100);
net::Defaults.inactivityTimeout = std::chrono::milliseconds(150);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aha, the default is 3600 seconds and we decrease this drastically to have a faster test, but then with 100ms we turn a stream socket into an inactive one so fast that it happens when no timeout should happen in a debug build, and increasing that decreased value makes the test more stable, while still not having to wait for 1h for the inactivity to happen. Makes sense after reading this about 3 times. :-)

@vmiklos vmiklos merged commit 91a83bc into master Jan 30, 2025
14 checks passed
@vmiklos vmiklos deleted the private/caolan/unittimeout_fail branch January 30, 2025 11:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

2 participants